From: Richard M. Stallman Date: Thu, 29 May 1997 06:33:12 +0000 (+0000) Subject: (Fsignal): Use call2 to call Vsignal_hook_function. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~81055 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=f01a9c5bc5f182427446d247a632a559ff53bdbb;p=emacs.git (Fsignal): Use call2 to call Vsignal_hook_function. --- diff --git a/src/eval.c b/src/eval.c index 50b88793004..dcbfada26db 100644 --- a/src/eval.c +++ b/src/eval.c @@ -1223,7 +1223,7 @@ See also the function `condition-case'.") /* This hook is used by edebug. */ if (! NILP (Vsignal_hook_function)) - Ffuncall (Vsignal_hook_function, error_symbol, data); + call2 (Vsignal_hook_function, error_symbol, data); conditions = Fget (error_symbol, Qerror_conditions);